home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 010a / eddy6b.zip / EDDY.USE < prev    next >
Text File  |  1991-12-18  |  3KB  |  65 lines

  1. ;
  2. ;       EDDY.USE - Defines "Point-n-Shoot" commands for EDDY
  3. ;
  4. ; This file is an example, illustrating how the EDDY.USE file may be
  5. ; set up to define the programs to be executed by EDDY in response to
  6. ; the "Point-n-Shoot" commands - [Shift+F9] and [Shift+^F9].
  7. ;        Refer to EDDY.DOC, Section 14.2 for details.
  8. ;
  9. ; You should build your own EDDY.USE file (with any editor or word
  10. ; processor - even EDLIN! - that can create ASCII-only text files), to
  11. ; define the types of files and the programs you use most frequently.
  12. ;
  13. ; Lines beginning with semi-colon are COMMENTS ONLY, ignored by EDDY.
  14. ; They are included here to only clarify the examples.  Command lines
  15. ; have a leading blank, for readability only - the blank isn't required.
  16. ;*********************************************************************
  17. ;---------------------------------------------------------------------
  18. ;      Use IBM Personal Editor, with 'assembler' key profile
  19.  *.ASM C:\PE\PE2 /PC:\PE\ME.PRO   %
  20. ;---------------------------------------------------------------------
  21. ;      Use IBM Personal Editor, with 'C++' key profile
  22.  *.C   C:\PE\PE2 /PC:\PE\CPE.PRO   %
  23.  *.H   C:\PE\PE2 /PC:\PE\CPE.PRO   %
  24.  *.CPP C:\PE\PE2 /PC:\PE\CPE.PRO   %
  25. ;---------------------------------------------------------------------
  26. ;      Use PKZMENU (PKWare's ZIP file manager) on .ZIP files
  27.  *.ZIP X:\UTIL\PKZMENU   %
  28. ;---------------------------------------------------------------------
  29. ;      In the following lines, the "|" in the first position means...
  30. ;      ...pause after executing, to allow review of screen display
  31. ;
  32. ;      Use 'View' option of LHA (from Haruyasu Yoshizaki) on .LZH files
  33.  |*.LZH X:\UTIL\LHA V   %
  34. ;      Use 'View' option of PKARC on .ARC files
  35.  |*.ARC X:\UTIL\PKARC V   %
  36. ;      Assume "EXE" is self-extracting archive (else why use [s-F9]?)
  37.  |*.EXE X:\UTIL\FV V   %
  38. ;---------------------------------------------------------------------
  39. ;      Use Bob Montgomery's picture file viewing program on .GIF files
  40.  *.GIF X:\UTIL\VPIC   %
  41. ;
  42. ;*********************************************************************
  43. ; After defining all the file extensions you want to associate with a
  44. ; specific program to use with "Point-n-Shoot", you may want to
  45. ; define a default for any other types of files.
  46. ;*********************************************************************
  47. ;      Use IBM Personal Editor, with word processor key profile...
  48. ;      ...for any files not explicitly defined above
  49.  *.*   C:\PE\PE2 /PC:\PE\WP.PRO   %
  50. ;
  51. ;*********************************************************************
  52. ; Finally, to use Point-n-Shoot on ALL matching files in the working
  53. ; directory (except any tagged "Ignore"), put a "^" at the beginning
  54. ; of the line.  If you also put a "|" after the "^", EDDY will pause
  55. ; before resuming control, to give you a chance to look at the screen
  56. ; before continuing.
  57. ;*********************************************************************
  58. ;      Assemble all .ASM files (except 'ignored' files), pausing...
  59. ;      ...after each file is assembled - to check any error messages
  60.  ^| *.ASM D:\MASM /N/ID:\   %,NUL,D:\;
  61. ;---------------------------------------------------------------------
  62. ;      Print all .LST files, without pausing between files
  63.  ^ *.LST C:\DOS\PRINT   %
  64. ;---------------------------------------------------------------------
  65.